home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / packet / p_tapr / tnchst / dlctable.c < prev    next >
Text File  |  1990-08-14  |  640b  |  20 lines

  1. /****** states and tables for dlc.c   (c) 1990 Howard Goldstein ****/
  2.  
  3.  
  4. struct dlc_state_entry cdecl dlcs_table[DNSTATES][DNEVENTS] = {
  5. /* DLIDLE */
  6. dlc_ring_in,DLDATA, 0,0, 0,0, 0,0,
  7.     0,0, 0,0, dlc_ring_out,DLRESET, 0,0, 0,0,
  8.  
  9. /* DLRESET*/
  10. dlc_ring_in,DLDATA, 0,DLDATA, 0,0, 0,0,
  11.     dlc_retryreset,0, 0,0, 0,0,  dlc_retryfail,0, 0,0,
  12.  
  13. /* DLDATA */
  14. dlc_ring_in,DLDATA, 0,0, dlc_dataproc,0, 0,0,
  15.     0,0, 0,DLDWAIT, 0,0,  0,0, dlc_ackproc,0,
  16.  
  17. /* DLDWAIT */
  18. dlc_ring_in,DLDATA, 0,0, dlc_dataproc,0, 0,DLDATA,
  19.      dlc_senddata,0, 0,0, 0,0,  dlc_retryfail,0, dlc_ackproc,0, };
  20.